home *** CD-ROM | disk | FTP | other *** search
- /*
- extract - A network log processor
- Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
-
- Please see the file `COPYING' for the complete copyright notice.
-
- extract.h - 03/20/93
-
- */
- struct ipaddr {
- unsigned int addr:32;
- };
-
- struct tcpsynout {
- struct timeval tp;
- unsigned long ipsrcaddr;
- unsigned long ipdstaddr;
- unsigned long tcpseq;
- unsigned short tcpsrcport;
- unsigned short tcpdstport;
- };
-